|
|
Il
Comune Informa»
Dettaglio
Comunicati
| -------------------------------------------------------------------------- |
<%
StartConnection()
Set rs = Server.CreateObject("ADODB.Recordset")
Set cmd = Server.CreateObject("ADODB.Command")
cmd.CommandText="select * from comunicati where IdComunicato = " & request("id")
Set cmd.ActiveConnection=MyConn
set rs=cmd.Execute
%>
| -------------------------------------------------------------------------- |
| -------------------------------------------------------------------------- |
<%
rs.close
set rs=nothing
set cmd=nothing
StopConnection
%>
|
|
|
|
|